www.gusucode.com > 搜索动力2010 v4.9 > 搜索动力2010 v4.9\code\admin.asp

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="config.asp"-->
<!--#include file="version.asp"-->
<!--#include file="md5.asp"-->
<!--#include file="synchron.asp"-->
<%
on error resume next
Server.CreateObject("Msxml2.XMLHTTP")
if err then
object_check="no"
end if
%>
<%
if request("action")="login" Then
	dim sql
	dim rs
	dim password
	password=replace(trim(Request("password")),"'","")
	password=MD5(password)
	set rs=server.createobject("adodb.recordset")
	sql="select * from zxsou_config where password='"&password&"'"
	rs.open sql,conn,1,1
 	if not(rs.bof and rs.eof) then
 		if password=rs("password") then
			Session("zxsouadmin")=password
			Response.Redirect "?"
 		end if
		else
		response.write "<script language=javascript>"	
		response.write "alert('密码不正确!');"	
		response.write "</script>"
		response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
		Response.End	
	end if
	rs.close
	conn.close
	set rs=nothing
	set conn=nothing
end if

if request("action")="logout" Then
session("zxsouadmin")=""
Response.Redirect "?"
end if

if request("action")="changepw" and session("zxsouadmin")<>"" then
pass1=request.Form("pass1")
pass2=request.Form("pass2")
if pass1="" then
		response.write "<script language=javascript>"	
		response.write "alert('请填写新密码!');"	
		response.write "</script>"
		response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
		Response.End	
end if
if pass1 <> pass2 then
		response.write "<script language=javascript>"	
		response.write "alert('您填写的新密码与确认密码不一致,请检查。');"	
		response.write "</script>"
		response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
		Response.End	
end if
  sql="select * from zxsou_config"
  Set zxsou_edit=Server.CreateObject("ADODB.RecordSet")
  zxsou_edit.open sql,conn,1,3
  pass=MD5(pass1)
  zxsou_edit("password")=pass
  zxsou_edit.update
  zxsou_edit.close
  response.write "<script language=javascript>"	
  response.write "alert('修改成功!');"	
  response.write "</script>"
  response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
  Response.End
end if
if request("action")="sysconfig" and session("zxsouadmin")<>"" then
  sql="select * from zxsou_config"
  Set zxsou_edit=Server.CreateObject("ADODB.RecordSet")
  zxsou_edit.open sql,conn,1,3
  zxsou_edit("indextitle")=request.Form("indextitle")
  zxsou_edit("name")=request.Form("name")
  zxsou_edit("domain")=request.Form("domain")
  zxsou_edit("weburl")=request.Form("weburl")
  zxsou_edit("staticurl")=request.Form("staticurl")
  zxsou_edit("adminurl")=request.Form("adminurl")
  zxsou_edit("sysurl")=request.Form("sysurl")
  zxsou_edit("mobileurl")=request.Form("mobileurl")
  zxsou_edit("timediff")=request.Form("timediff")
  zxsou_edit("indexkeywords")=request.Form("indexkeywords")
  zxsou_edit("indexdescription")=request.Form("indexdescription")
  zxsou_edit("navigation")=request.Form("navigation")
  zxsou_edit("stat")=request.Form("stat")
  zxsou_edit("statview")=request.Form("statview")
  zxsou_edit("icp")=request.Form("icp")
  zxsou_edit("mode")=request.Form("mode")
  zxsou_edit("notice")=request.Form("notice")
  zxsou_edit("authorize")=request.Form("authorize")
  zxsou_edit.update
  zxsou_edit.close
  response.write "<script language=javascript>"	
  response.write "alert('修改成功!');"	
  response.write "</script>"
  response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
  Response.End
end if
if request("action")="userconfig" and session("zxsouadmin")<>"" then
  sql="select * from zxsou_config"
  Set zxsou_edit=Server.CreateObject("ADODB.RecordSet")
  zxsou_edit.open sql,conn,1,3
  zxsou_edit("skin")=request.Form("skin")
  zxsou_edit("bespeak_skin")=request.Form("bespeak_skin")
  zxsou_edit("bespeak_time")=request.Form("bespeak_time")
  zxsou_edit("bespeak_check")=request.Form("bespeak_check")
  zxsou_edit("showtop")=request.Form("showtop")
  zxsou_edit("ifrmheight")=request.Form("ifrmheight")
  zxsou_edit("weathershow")=request.Form("weathershow")
  zxsou_edit("handwrite")=request.Form("handwrite")
  zxsou_edit("cloudinput")=request.Form("cloudinput")
  zxsou_edit("scrollshow")=request.Form("scrollshow")
  zxsou_edit("changenav")=request.Form("changenav")
  zxsou_edit("indexfocus")=request.Form("indexfocus")
  zxsou_edit("formtarget")=request.Form("formtarget")
  zxsou_edit("searchtype")=request.Form("searchtype")
  zxsou_edit("key_web")=request.Form("key_web")
  zxsou_edit("key_photo")=request.Form("key_photo")
  zxsou_edit("key_music")=request.Form("key_music")
  zxsou_edit("key_video")=request.Form("key_video")
  zxsou_edit("key_game")=request.Form("key_game")
  zxsou_edit("key_know")=request.Form("key_know")
  zxsou_edit("key_other")=request.Form("key_other")
  zxsou_edit("searchsug")=request.Form("searchsug")
  zxsou_edit("siteshow")=request.Form("siteshow")
  zxsou_edit("festivalshow")=request.Form("festivalshow")
  zxsou_edit("sethomepage")=request.Form("sethomepage")
  zxsou_edit("ranklink")=request.Form("ranklink")
  zxsou_edit("mobilelink")=request.Form("mobilelink")
  zxsou_edit("getcode")=request.Form("getcode")
  zxsou_edit("adminlink")=request.Form("adminlink")
  zxsou_edit("ico")=request.Form("ico")
  zxsou_edit("find")=request.Form("find")
  zxsou_edit.update
  zxsou_edit.close
  response.write "<script language=javascript>"	
  response.write "alert('修改成功!');"	
  response.write "</script>"
  response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
  Response.End
end if
if request("action")="adconfig" and session("zxsouadmin")<>"" then
  sql="select * from zxsou_config"
  Set zxsou_edit=Server.CreateObject("ADODB.RecordSet")
  zxsou_edit.open sql,conn,1,3
  zxsou_edit("adcode")=request.Form("adcode")
  zxsou_edit("adshow")=request.Form("adshow")
  zxsou_edit("adcode_search")=request.Form("adcode_search")
  zxsou_edit("adshow_search")=request.Form("adshow_search")
  zxsou_edit("friendlink")=request.Form("friendlink")
  zxsou_edit.update
  zxsou_edit.close
  response.write "<script language=javascript>"	
  response.write "alert('修改成功!');"	
  response.write "</script>"
  response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
  Response.End
end if
if request("action")="zxsoumeng" and session("zxsouadmin")<>"" then
  sql="select * from zxsou_config"
  Set zxsou_edit=Server.CreateObject("ADODB.RecordSet")
  zxsou_edit.open sql,conn,1,3
  zxsou_edit("webmaster")=request.Form("webmaster")
  zxsou_edit("chinesego")=request.Form("chinesego")
  zxsou_edit("serverline")=request.Form("serverline")
  zxsou_edit("synchronup")=request.Form("synchronup")
  zxsou_edit("prhelp")=request.Form("prhelp")
  zxsou_edit.update
  zxsou_edit.close
  response.write "<script language=javascript>"	
  response.write "alert('修改成功!');"	
  response.write "</script>"
  response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
  Response.End
end if
if request("action")="makestatic" and session("zxsouadmin")<>"" then
url="http://"&Request.ServerVariables("SERVER_NAME")&left(request.ServerVariables("PATH_INFO"), instrrev(request.ServerVariables("PATH_INFO"), "/"))&"index.asp"
Html=GetPage(url)
staticword="<!"+GetContent(Html,"<!","</html>",0)+"</html>"
Set wt_fso = Server.CreateObject("Scripting.FileSystemObject")
Set wt_now = wt_fso.CreateTextFile(server.mappath(staticurl),true) 
wt_now.Write staticword
wt_now.close
set wt_now=nothing 
set wt_fso=nothing 
  response.write "<script language=javascript>"	
  response.write "alert('生成首页静态文件成功!');"	
  response.write "</script>"
  response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
  Response.End
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>系统管理</title>
<link rel="stylesheet" type="text/css" href="style/admin.css">
</head>
<body>
<%if Session("zxsouadmin")="" then%>
<div class="wrapper">
	<div class="contentWrapper">
	
      <div class="contentBlock">
        <div class="contentText">
					<h3>管理登录</h3>
					<form name="changepw" action="?action=login" method="post">

					密码:<input name="password" type="password"><br><br>
					<input type="Submit" name="Submit" value="登 录" id="btn_submit">

					</form>
		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>版本信息</h3>

					当前版本:<%=zxsoutype%><%=version%> (<%=versionname%>)<br>
					最新版本:<script src="http://<%=serverline%>/zxsoumeng/update.asp?zxsoutype=<%=zxsoutype%>&localversion=<%=version%>"></script><br>

		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3><a href=./>返回首页</a></h3>
		</div>
      </div>

	</div>
</div>
<%else%>
<%helpurl="http://"&serverline&"/zxsoumeng/help/?version=aspaccess&name="%>
<div class="wrapper">
	<div class="contentWrapper">
	
      <div class="contentBlock">
        <div class="contentText">
					<h3>密码安全</h3>
					<form name="changepw" action="?action=changepw" method="post">

					<%if zxsou_config("password")="" or zxsou_config("password")=MD5("admin") then%><strong class=notice>温馨提示:为保障您的权益,请尽快修改密码。 <a href=http://www.zxsou.com/zxsoumeng/rights.asp target=_blank>了解更多</a></strong><br><%end if%>
					新&nbsp;密&nbsp;码&nbsp;:<input name="pass1" type="password" class="input_w"> 如不修改密码请留空<br>
					重复密码:<input name="pass2" type="password" class="input_w"> 重复上面所输入的密码 如不修改密码请留空<br><br>
					<input type="Submit" name="Submit" value="修 改" id="btn_submit">

					</form>
		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>在线搜盟</h3>
					<form name="zxsoumeng" action="?action=zxsoumeng" method="post">

					<%if webmaster="test" or webmaster="" then%><strong class=notice>温馨提示:为保障您的权益,请尽快设置您自己的搜盟帐号。 <a href=http://www.zxsou.com/zxsoumeng/rights.asp target=_blank>了解更多</a></strong><br><%end if%>
					<a href=<%=helpurl%>webmaster target=_blank>[?]</a>搜盟帐号:<input name="webmaster" type="text" class="input_w" value="<%=webmaster%>"> 如果您还没有联盟帐号,建议到<a href="http://union.zxsou.com" target=_blank>在线搜盟</a>注册.<br>
					<a href=<%=helpurl%>chinesego target=_blank>[?]</a>中文直达:<input name="chinesego" type="text" class="input_w" value="<%=chinesego%>"> 请在此填入已通过审核的中文直达关键词.<br>
					<a href=<%=helpurl%>serverline target=_blank>[?]</a>线路选择:<input type="radio" name="serverline" value="www.zxsou.com"<%if serverline="www.zxsou.com" then%> checked<%end if%>>默认 <input type="radio" name="serverline" value="www.zxsou.cn"<%if serverline="www.zxsou.cn" then%> checked<%end if%>>线路2 <input type="radio" name="serverline" value="temp.zxsou.com"<%if serverline="temp.zxsou.com" then%> checked<%end if%>>线路3 <input type="radio" name="serverline" value="temp.zxsou.cn"<%if serverline="temp.zxsou.cn" then%> checked<%end if%>>线路4<br>
					<a href=<%=helpurl%>synchronup target=_blank>[?]</a>服务加速:<input type="radio" name="synchronup" value="1"<%if synchronup=1 then%> checked<%end if%>>开启 <input type="radio" name="synchronup" value="0"<%if synchronup=0 then%> checked<%end if%>>关闭&nbsp;&nbsp;(<%if object_check="no" then%>您的服务器不支持该功能,建议关闭。<%else%>您的服务器支持该功能,建议开启。<%end if%>)<br>
					<a href=<%=helpurl%>prhelp target=_blank>[?]</a>搜盟赞助:<input type="radio" name="prhelp" value="true"<%if prhelp="true" then%> checked<%end if%>>开启 <input type="radio" name="prhelp" value="false"<%if prhelp="false" then%> checked<%end if%>>关闭<br><br>
					<input type="Submit" name="Submit" value="保 存" id="btn_submit">

					</form>
		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>系统设置</h3>
					<form name="sysconfig" action="?action=sysconfig" method="post">

					<a href=<%=helpurl%>indextitle target=_blank>[?]</a>首页标题:<input name="indextitle" type="text" class="input_w" value="<%=indextitle%>"> 该名称将在首页标题栏显示<br>
					<a href=<%=helpurl%>name target=_blank>[?]</a>网站名称:<input name="name" type="text" class="input_w" value="<%=name%>"> 该名称将在标题栏、版权等位置显示<br>
					<a href=<%=helpurl%>domain target=_blank>[?]</a>网站域名:<input name="domain" type="text" class="input_w" value="<%=domain%>"> 请填写您网站的域名(例如zxsou.com)<br>
					<a href=<%=helpurl%>weburl target=_blank>[?]</a>首页链接:<input name="weburl" type="text" class="input_w" value="<%=weburl%>"> 请填写系统首页URL(search目录:/search/ 根目录:/)<br>
					<a href=<%=helpurl%>staticurl target=_blank>[?]</a>首页静态:<input name="staticurl" type="text" class="input_w" value="<%=staticurl%>"> <a href=?action=makestatic><strong>立即生成<%=staticurl%></strong></a><br>
					<a href=<%=helpurl%>adminurl target=_blank>[?]</a>后台链接:<input name="adminurl" type="text" class="input_w" value="<%=adminurl%>"> 请填写系统后台URL(若需重命名请修改)<br>
					<a href=<%=helpurl%>sysurl target=_blank>[?]</a>系统目录:<input name="sysurl" type="text" class="input_w" value="<%=sysurl%>"> 请填写系统目录URL(search目录:/search/ 根目录:/)<br>
					<a href=<%=helpurl%>mobileurl target=_blank>[?]</a>手机链接:<input name="mobileurl" type="text" class="input_w" value="<%=mobileurl%>"> 请填写手机链接URL(默认:m/)<br>
					<a href=<%=helpurl%>timediff target=_blank>[?]</a>系统时差:<input name="timediff" type="text" class="input_w" value="<%=timediff%>"> 请填写服务器系统时间与本地的时差(单位:小时 例如:-8 默认:0)<br>
					<a href=<%=helpurl%>indexkeywords target=_blank>[?]</a>关 键 字:<input name="indexkeywords" type="text" class="input_w" value="<%=indexkeywords%>"> 请填写系统关键字,用半角逗号分隔<br>
					<a href=<%=helpurl%>indexdescription target=_blank>[?]</a>站点描述:<input name="indexdescription" type="text" class="input_w" value="<%=indexdescription%>"> 请用一句话简单描述您的搜索频道<br>
					<a href=<%=helpurl%>navigation target=_blank>[?]</a>首页导航:<textarea name="navigation" class="textarea_w"><%=navigation%></textarea> 请填写首页导航代码<br>
					<a href=<%=helpurl%>icp target=_blank>[?]</a>备案信息:<input name="icp" type="text" class="input_w" value="<%=icp%>"> 请填写您在信息产业部的ICP信息备案号<br>
					<a href=<%=helpurl%>stat target=_blank>[?]</a>统计代码:<textarea name="stat" class="textarea_w"><%=stat%></textarea> 请填写统计工具所提供的HTML代码<br>
					<a href=<%=helpurl%>statview target=_blank>[?]</a>统计状态:<input type="radio" name="statview" value="true"<%if statview="true" then%> checked<%end if%>>显示统计 <input type="radio" name="statview" value="false"<%if statview="false" then%> checked<%end if%>>隐藏统计<br>
					<a href=<%=helpurl%>notice target=_blank>[?]</a>关闭提示:<textarea name="notice" class="textarea_w"><%=notice%></textarea> 当系统关闭时,显示的公告提示等信息.<br>
					<a href=<%=helpurl%>mode target=_blank>[?]</a>系统状态:<input type="radio" name="mode" value="open"<%if mode="open" then%> checked<%end if%>>系统开放 <input type="radio" name="mode" value="close"<%if mode="close" then%> checked<%end if%>>系统关闭<br>
					<a href=<%=helpurl%>authorize target=_blank>[?]</a>授权信息:<input type="radio" name="authorize" value="true"<%if authorize="true" then%> checked<%end if%>>显示 <input type="radio" name="authorize" value="false"<%if authorize="false" then%> checked<%end if%>>隐藏<br><br>
					<input type="Submit" name="Submit" value="保 存" id="btn_submit">

					</form>
		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>用户体验</h3>
					<form name="userconfig" action="?action=userconfig" method="post">

					<strong>更换LOGO,请直接覆盖皮肤“images”目录下的“logo.gif”和“logosmall.gif”。</strong><br><br>
					<a href=<%=helpurl%>skin target=_blank>[?]</a>界面样式:<select name="skin"><%listskin(server.MapPath(sysurl&"skin/"))
function listskin(path)
dim fso
dim objFolder
dim objSubFolders
dim objSubFolder
set fso=server.CreateObject("scripting.filesystemobject")
on error resume next
set objFolder=fso.GetFolder(path)
set objSubFolders=objFolder.Subfolders
for each objSubFolder in objSubFolders
if skin=objSubFolder.name then
Response.Write "<option value="""&objSubFolder.name&""" selected>"&objSubFolder.name&"</option>"
else
Response.Write "<option value="""&objSubFolder.name&""">"&objSubFolder.name&"</option>"
end if
next
set objFolder=nothing
set objSubFolders=nothing
set fso=nothing
end function%></select> 选择skin目录下的皮肤文件夹 [<a href=http://www.zxsou.com/zxsoumeng/diy.asp#skin target=_blank><strong>下载官方皮肤</strong></a>]<br>
					<a href=<%=helpurl%>bespeak target=_blank>[?]</a>预约皮肤:<select name="bespeak_skin"><%listskinbespeak(server.MapPath(sysurl&"skin/"))
function listskinbespeak(path)
dim fsobespeak
dim objFolderbespeak
dim objSubFoldersbespeak
dim objSubFolderbespeak
set fsobespeak=server.CreateObject("scripting.filesystemobject")
on error resume next
set objFolderbespeak=fsobespeak.GetFolder(path)
set objSubFoldersbespeak=objFolderbespeak.Subfolders
for each objSubFolderbespeak in objSubFoldersbespeak
if bespeak_skin=objSubFolderbespeak.name then
Response.Write "<option value="""&objSubFolderbespeak.name&""" selected>"&objSubFolderbespeak.name&"</option>"
else
Response.Write "<option value="""&objSubFolderbespeak.name&""">"&objSubFolderbespeak.name&"</option>"
end if
next
set objFolderbespeak=nothing
set objSubFoldersbespeak=nothing
set fsobespeak=nothing
end function%></select> <input name="bespeak_time" type="text" value="<%=bespeak_time%>"> <input name="bespeak_check" type="checkbox" value="true"<%if bespeak_check="true" then%> checked<%end if%>> 开启该功能<br>
					<a href=<%=helpurl%>key_web target=_blank>[?]</a>网页默认:<input name="key_web" type="text" class="input_w" value="<%=key_web%>"> 网页搜索默认关键字<br>
					<a href=<%=helpurl%>key_photo target=_blank>[?]</a>图片默认:<input name="key_photo" type="text" class="input_w" value="<%=key_photo%>"> 图片搜索默认关键字<br>
					<a href=<%=helpurl%>key_music target=_blank>[?]</a>音乐默认:<input name="key_music" type="text" class="input_w" value="<%=key_music%>"> 音乐搜索默认关键字<br>
					<a href=<%=helpurl%>key_video target=_blank>[?]</a>视频默认:<input name="key_video" type="text" class="input_w" value="<%=key_video%>"> 视频搜索默认关键字<br>
					<a href=<%=helpurl%>key_game target=_blank>[?]</a>游戏默认:<input name="key_game" type="text" class="input_w" value="<%=key_game%>"> 游戏搜索默认关键字<br>
					<a href=<%=helpurl%>key_know target=_blank>[?]</a>知识默认:<input name="key_know" type="text" class="input_w" value="<%=key_know%>"> 知识搜索默认关键字<br>
					<a href=<%=helpurl%>key_other target=_blank>[?]</a>其他默认:<input name="key_other" type="text" class="input_w" value="<%=key_other%>"> 其他搜索默认关键字<br>
					<a href=<%=helpurl%>searchsug target=_blank>[?]</a>搜索提示:<input type="radio" name="searchsug" value="baidu"<%if searchsug="baidu" then%> checked<%end if%>>开启百度搜索提示 <input type="radio" name="searchsug" value="google"<%if searchsug="google" then%> checked<%end if%>>开启Google搜索提示 <input type="radio" name="searchsug" value="close"<%if searchsug="close" then%> checked<%end if%>>关闭搜索提示<br>
					<a href=<%=helpurl%>showtop target=_blank>[?]</a>显示方式:<input type="radio" name="showtop" value="show"<%if showtop="show" then%> checked<%end if%>>显示搜索引擎顶部 <input type="radio" name="showtop" value=""<%if showtop="" then%> checked<%end if%>>隐藏搜索引擎顶部<br>
					<a href=<%=helpurl%>ifrmheight target=_blank>[?]</a>显示高度:<input type="radio" name="ifrmheight" value="auto"<%if ifrmheight="auto" then%> checked<%end if%>>自适应 <input type="radio" name="ifrmheight" value="num"<%if ifrmheight="num" then%> checked<%end if%>>固定<br>
					<a href=<%=helpurl%>weathershow target=_blank>[?]</a>天气预报:<input type="radio" name="weathershow" value="true"<%if weathershow="true" then%> checked<%end if%>>显示天气预报 <input type="radio" name="weathershow" value=""<%if weathershow="" then%> checked<%end if%>>隐藏天气预报<br>
					<a href=<%=helpurl%>handwrite target=_blank>[?]</a>手写输入:<input type="radio" name="handwrite" value="true"<%if handwrite="true" then%> checked<%end if%>>开启 <input type="radio" name="handwrite" value=""<%if handwrite="" then%> checked<%end if%>>关闭<br>
					<a href=<%=helpurl%>cloudinput target=_blank>[?]</a>云输入法:<input type="radio" name="cloudinput" value="qq"<%if cloudinput="qq" then%> checked<%end if%>>QQ(手动) <input type="radio" name="cloudinput" value="sogou"<%if cloudinput="sogou" then%> checked<%end if%>>搜狗(手动) <input type="radio" name="cloudinput" value="qqrun"<%if cloudinput="qqrun" then%> checked<%end if%>>QQ(自动) <input type="radio" name="cloudinput" value="sogourun"<%if cloudinput="sogourun" then%> checked<%end if%>>搜狗(自动) <input type="radio" name="cloudinput" value="close"<%if cloudinput="close" then%> checked<%end if%>>关闭<br>
					<a href=<%=helpurl%>scrollshow target=_blank>[?]</a>首页滚动:<input type="radio" name="scrollshow" value="true"<%if scrollshow="true" then%> checked<%end if%>>显示滚动条 <input type="radio" name="scrollshow" value="false"<%if scrollshow="false" then%> checked<%end if%>>隐藏滚动条<br>
					<a href=<%=helpurl%>changenav target=_blank>[?]</a>切换方式:<input type="radio" name="changenav" value="click"<%if changenav="click" then%> checked<%end if%>>鼠标点击切换 <input type="radio" name="changenav" value="over"<%if changenav="over" then%> checked<%end if%>>鼠标经过切换<br>
					<a href=<%=helpurl%>indexfocus target=_blank>[?]</a>首页焦点:<input type="radio" name="indexfocus" value="true"<%if indexfocus="true" then%> checked<%end if%>>焦点搜索框 <input type="radio" name="indexfocus" value=""<%if indexfocus="" then%> checked<%end if%>>无焦点<br>
					<a href=<%=helpurl%>formtarget target=_blank>[?]</a>搜索窗口:<input type="radio" name="formtarget" value=""<%if formtarget="" then%> checked<%end if%>>在本窗口中打开 <input type="radio" name="formtarget" value="_blank"<%if formtarget="_blank" then%> checked<%end if%>>在新窗口中打开<br>
					<a href=<%=helpurl%>searchtype target=_blank>[?]</a>快选引擎:<input type="radio" name="searchtype" value="true"<%if searchtype="true" then%> checked<%end if%>>显示首页快选引擎 <input type="radio" name="searchtype" value=""<%if searchtype="" then%> checked<%end if%>>隐藏首页快选引擎<br>
					<a href=<%=helpurl%>siteshow target=_blank>[?]</a>网址导航:<input type="radio" name="siteshow" value="true"<%if siteshow="true" then%> checked<%end if%>>显示首页网址导航 <input type="radio" name="siteshow" value=""<%if siteshow="" then%> checked<%end if%>>隐藏首页网址导航<br>
					<a href=<%=helpurl%>festivalshow target=_blank>[?]</a>节日提示:<input type="radio" name="festivalshow" value="true"<%if festivalshow="true" then%> checked<%end if%>>开启 <input type="radio" name="festivalshow" value="false"<%if festivalshow="false" then%> checked<%end if%>>关闭<br>
					<a href=<%=helpurl%>sethomepage target=_blank>[?]</a>设为主页:<input type="radio" name="sethomepage" value="true"<%if sethomepage="true" then%> checked<%end if%>>显示 <input type="radio" name="sethomepage" value="false"<%if sethomepage="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>ranklink target=_blank>[?]</a>排行链接:<input type="radio" name="ranklink" value="true"<%if ranklink="true" then%> checked<%end if%>>显示 <input type="radio" name="ranklink" value="false"<%if ranklink="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>mobilelink target=_blank>[?]</a>手机链接:<input type="radio" name="mobilelink" value="true"<%if mobilelink="true" then%> checked<%end if%>>显示 <input type="radio" name="mobilelink" value="false"<%if mobilelink="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>getcode target=_blank>[?]</a>搜索代码:<input type="radio" name="getcode" value="true"<%if getcode="true" then%> checked<%end if%>>显示 <input type="radio" name="getcode" value="false"<%if getcode="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>adminlink target=_blank>[?]</a>管理链接:<input type="radio" name="adminlink" value="true"<%if adminlink="true" then%> checked<%end if%>>显示 <input type="radio" name="adminlink" value="false"<%if adminlink="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>ico target=_blank>[?]</a>站点图标:<input type="radio" name="ico" value="true"<%if ico="true" then%> checked<%end if%>>显示 <input type="radio" name="ico" value="false"<%if ico="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>find target=_blank>[?]</a>搜索发现:<input type="radio" name="find" value="true"<%if find="true" then%> checked<%end if%>>开启 <input type="radio" name="find" value="false"<%if find="false" then%> checked<%end if%>>关闭 [<a href=http://www.zxsou.com/zxsoumeng/diy_find.asp target=_blank><strong>生成搜索发现代码</strong></a>]<br><br>
					<input type="Submit" name="Submit" value="保 存" id="btn_submit">

					</form>
		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>广告管理</h3>
					<form name="adconfig" action="?action=adconfig" method="post">

					<a href=<%=helpurl%>adcode target=_blank>[?]</a>首页广告代码:<textarea name="adcode" class="textarea_w"><%=adcode%></textarea> [<a href=http://www.zxsou.com/zxsoumeng/diy.asp#ads target=_blank><strong>下载官方广告示例</strong></a>]<br>
					<a href=<%=helpurl%>adshow target=_blank>[?]</a>首页广告状态:<input type="radio" name="adshow" value="true"<%if adshow="true" then%> checked<%end if%>>显示 <input type="radio" name="adshow" value="false"<%if adshow="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>adcode_search target=_blank>[?]</a>搜索广告代码:<textarea name="adcode_search" class="textarea_w"><%=adcode_search%></textarea> [<a href=http://www.zxsou.com/zxsoumeng/diy.asp#ads target=_blank><strong>下载官方广告示例</strong></a>]<br>
					<a href=<%=helpurl%>adshow_search target=_blank>[?]</a>搜索广告状态:<input type="radio" name="adshow_search" value="true"<%if adshow_search="true" then%> checked<%end if%>>显示 <input type="radio" name="adshow_search" value="false"<%if adshow_search="false" then%> checked<%end if%>>隐藏<br>
					<a href=<%=helpurl%>friendlink target=_blank>[?]</a>友情链接代码:<textarea name="friendlink" class="textarea_w"><%=friendlink%></textarea><br><br>
					<input type="Submit" name="Submit" value="保 存" id="btn_submit">

					</form>
		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>版本信息</h3>

					当前版本:<%=zxsoutype%><%=version%> (<%=versionname%>)<br>
					最新版本:<script src="http://<%=serverline%>/zxsoumeng/update.asp?zxsoutype=<%=zxsoutype%>&localversion=<%=version%>"></script><br>

		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3>常用链接</h3>

					<a href=http://www.zxsou.com/zxsoumeng/?webmaster=<%=webmaster%> target=_blank>登录在线搜盟</a> <a href=http://www.zxsou.com/zxsoumeng/key.asp target=_blank>直达服务</a> <a href=http://www.zxsou.com/zxsoumeng/edit.asp target=_blank>服务设置</a> <a href=http://www.zxsou.com/zxsoumeng/download.asp target=_blank>产品下载</a> <a href=http://www.zxsou.com/zxsoumeng/diy.asp target=_blank>产品扩展</a> <a href=http://www.zxsou.com/zxsoumeng/price.asp target=_blank>付费服务</a> <a href=http://www.zxsou.com/zxsoumeng/contact.asp target=_blank>联系我们</a><br><br>

		</div>
      </div>

      <div class="contentBlock">
        <div class="contentText">
					<h3><a href=?action=logout>安全退出</a></h3>
		</div>
      </div>

	</div>
</div>
<%end if%>
</body>
</html>